home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 099 (1989-05-15)(Ossowski, Stefan)(DE)(PD).zip / Taifun 099 (1989-05-15)(Ossowski, Stefan)(DE)(PD).adf / PCQ / Runtime / outbuffer.asm < prev    next >
Assembly Source File  |  1989-03-31  |  304b  |  11 lines

  1.     SECTION    ONE,BSS
  2.  
  3. *    This allocates space for the output buffer, which is used
  4. *    by several of the write routines.  Rather than put it in one of
  5. *    those modules I decided to give it it's own module.  That way it
  6. *    isn't linked to the program if it's not required.
  7.  
  8.     XDEF    outbuffer
  9. outbuffer    ds.b    128
  10.     END
  11.